body {
    background-color: #141414;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pikachu Styles */
.pikachu {
    width: 200px;
    height: 250px;
    position: relative;
    margin-bottom: 20px;
}

.pikachu .body {
    width: 100%;
    height: 100%;
    background-color: #FFDE00;
    border-radius: 50%;
    position: absolute;
}

.pikachu .tail {
    width: 40px;
    height: 80px;
    background-color: #FFDE00;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    z-index: -1;
}

.pikachu .ears {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: -20px;
}

.pikachu .ear {
    width: 30px;
    height: 60px;
    background-color: #FFDE00;
    border-radius: 15px 15px 0 0;
}

.pikachu .ear.left {
    transform: rotate(-15deg);
}

.pikachu .ear.right {
    transform: rotate(15deg);
}

.pikachu .face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pikachu .cheek {
    width: 20px;
    height: 20px;
    background-color: #FF0000;
    border-radius: 50%;
    position: absolute;
    top: 60px;
}

.pikachu .cheek.left {
    left: -30px;
}

.pikachu .cheek.right {
    right: -30px;
}

.pikachu .eyes {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.pikachu .eye {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    margin: 0 5px;
}

.pikachu .mouth {
    width: 20px;
    height: 5px;
    background-color: #000;
    margin: 0 auto;
}

.pikachu .belly {
    width: 60%;
    height: 40%;
    background-color: #F5F5DC;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30%;
}

/* Netflix Logo Styles */
.netflix-logo {
    width: 300px;
}

.netflix-logo svg {
    width: 100%;
    height: auto;
}

.netflix-logo path {
    fill: #E50914;
}

/* Pikaflix Logo Styles */
.pikaflix-logo {
    width: 400px; 
    margin-top: 20px;
}

.pikaflix-logo svg {
    width: 100%;
    height: auto;
}